@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100&display=swap');

body,
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif;
}

/* ini: Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  /* cor do background que vai ocupar o body */
  z-index: 999;
  /* z-index para jogar para frente e sobrepor tudo */
}

#preloader .inner {
  position: absolute;
  top: 50%;
  /* centralizar a parte interna do preload (onde fica a animação)*/
  left: 50%;
  transform: translate(-50%, -50%);
}

.bolas>div {
  display: inline-block;
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

}

.bolas>div:nth-child(1) {
  animation-duration: 0.75s;
  animation-delay: 0;
}

.bolas>div:nth-child(2) {
  animation-duration: 0.75s;
  animation-delay: 0.12s;
}

.bolas>div:nth-child(3) {
  animation-duration: 0.75s;
  animation-delay: 0.24s;
}

@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }

  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/* end: Preloader */

/* Fontes e textos */
.fonte-cursiva {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 2.5rem;
}

.fonte-larga {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
}

.fonte-cursiva2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.2rem;
}

.fonte-cursiva3 {
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  text-align: left;
}

.fonte-cursiva4 {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  text-align: left;
}

@media (max-width: 992px) {
  .fonte-cursiva {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .fonte-cursiva3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
  }
}

.fonte-texto {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
}

.cor-0 {
  color: #B3832F;
}

.cor-1 {
  color: #D2A85E;
}

.cor-2 {
  color: #B3832F;
}

.cor-3 {
  color: #00152e;
}

.cor-4 {
  color: #222222;
}


.animacao-texto {
  animation-duration: 3s;
  animation-name: slidein;
  text-align: left;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}


hr {
  max-width: 50px;
  border-width: 3px;
  border-color: #B3832F;
}

hr.light {
  border-color: #fff;
}

hr.light2 {
  max-width: 300px;
  border-color: #04c3f6;
}

.secao2-principios {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #F8F9FC;
}

.bg-ceila-braga {
  min-height: 600px;
  padding: 300px 0 150px 0;
  background-image: url("../img/sobre/Ceila04.png");
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.cartao {
  max-width: 350px;
  border-radius: 10px;
  background-color: #ffffff;
  margin: 5px;
  padding: 15px 5px;
}

.cartao:hover {
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  /* border: solid 1px #155091; */
}


.confi-ul {
  text-align: left;
  list-style: none;
}

a {
  color: inherit;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}

/* CTA */

.cta {
  color: inherit;
  text-align: center;
  align-items: center;
  width: 150px;
  height: 50;
  border: solid 1px #B3832F;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 3px 15px;
  background-color: #ffffff;
}

.cta:hover {
  color: #fff;
  border: #04c3f6;
  /* border: #CD7f32; */
  text-decoration: none;
  background-image: linear-gradient(to right, #D2A85E 0, #B3832F 100%);
  /* background-image: linear-gradient(to right,#e4e4e4 0,#CD7f32 100%); */
}

.cta2 {
  text-align: center;
  align-items: center;
  width: 150px;
  height: 50;
  border: solid 1px #fff;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 3px 15px;
  background-color: #fff;
}

.cta2:hover {
  color: #fff;
  border: #04c3f6;
  text-decoration: none;
  background-image: linear-gradient(to right, #D2A85E 0, #B3832F 100%);
}

.cta-whats {
  background-color: #D2A85E;
  color: #fff;
  text-align: center;
  align-items: center;
  width: 150px;
  height: 50;
  border: solid 1px #000;
  margin-left: 50px;
  padding: 2px 3px;
  text-decoration: none;
}

.cta-whats:hover {
  background-color: #B3832F;
  color: #fff;
}

/* efeito de zoom no slide */
.img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.88);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  animation: zoom 25s;
}

.efeito-img-secao1 {
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.bg-primary {
  background-color: #155091 !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.text-faded {
  color: rgba(255, 255, 255, 0.7);
}


.secao3-sobre {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.bg-default1 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.bg-mf {
  background-color: #F8F9FC;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.bg-profissionais1 {
  padding-left: 0;
  padding-right: 0;
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fff;
}

.bg-profissionais2 {
  padding-left: 0;
  padding-right: 0;
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #F8F9FC;
}

.card-profissionais {
  max-width: 300px;
  background-color: #F8F9FC;
  border-radius: 10px;
  padding-left: 0;
  padding-right: 0;
  height: auto;
}

.card-profissionais:hover {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}

section {
  padding-top: 2rem;
  padding-bottom: 8rem 0;
}

.section-heading {
  margin-top: 0;
}

::-moz-selection {
  color: #fff;
  background: #212529;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #212529;
  text-shadow: none;
}

img::selection {
  color: #fff;
  background: transparent;
}

img::-moz-selection {
  color: #fff;
  background: transparent;
}

body {
  -webkit-tap-highlight-color: #212529;
}




#mainNav {
  /* border-bottom: 1px solid rgba(33, 37, 41, 0.1); */
  background-color: #fff;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

#mainNav .navbar-brand {
  font-weight: 700;
  color: #D2A85E;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  padding: 0 0;
}

#mainNav .navbar-brand:focus,
#mainNav .navbar-brand:hover {
  color: #B3832F;
}

#mainNav .navbar-nav>li.nav-item>a.nav-link,
#mainNav .navbar-nav>li.nav-item>a.nav-link:focus {
  font-size: 1rem;
  /* font-weight: 500; */
  color: #212529;
}

#mainNav .navbar-nav>li.nav-item>a.nav-link:hover,
#mainNav .navbar-nav>li.nav-item>a.nav-link:focus:hover {
  color: #B3832F;
}

/* color: #155091; } */
#mainNav .navbar-nav>li.nav-item>a.nav-link.active,
#mainNav .navbar-nav>li.nav-item>a.nav-link:focus.active {
  color: #E2C796 !important;
  background-color: transparent;
  border-bottom: solid 2px #E2C796
}

#mainNav .navbar-nav>li.nav-item>a.nav-link.active:hover,
#mainNav .navbar-nav>li.nav-item>a.nav-link:focus.active:hover {
  background-color: transparent;
}

@media (min-width: 992px) {
  #mainNav {
    border-color: #04c3f6;
    background-color: transparent;
  }

  #mainNav .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
  }

  #mainNav .navbar-brand:focus,
  #mainNav .navbar-brand:hover {
    color: #fff;
  }

  #mainNav .navbar-nav>li.nav-item>a.nav-link {
    padding: 0.5rem 1rem;
  }

  #mainNav .navbar-nav>li.nav-item>a.nav-link,
  #mainNav .navbar-nav>li.nav-item>a.nav-link:focus {
    color: #fff;
  }

  #mainNav .navbar-nav>li.nav-item>a.nav-link:hover,
  #mainNav .navbar-nav>li.nav-item>a.nav-link:focus:hover {
    color: #B3832F;
  }

  #mainNav.navbar-shrink {
    border-bottom: 1px solid rgba(33, 37, 41, 0.1);
    background-color: #fff;
  }

  #mainNav.navbar-shrink .navbar-brand {
    color: #B3832F;
  }

  #mainNav.navbar-shrink .navbar-brand:focus,
  #mainNav.navbar-shrink .navbar-brand:hover {
    color: #B3832F;
  }

  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link,
  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:focus {
    color: #B3832F;
  }

  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:hover,
  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a.nav-link:focus:hover {
    color: #B3832F;
  }
}


header.masthead {
  padding-top: 10rem;
  padding-bottom: calc(10rem - 56px);
  background-image: url("../img/sobre/bannerSobre.png");
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

header.masthead hr {
  margin-top: 30px;
  margin-bottom: 30px;
}

header.masthead h1 {
  font-size: 2rem;
}

header.masthead p {
  font-weight: 300;
}

@media (min-width: 768px) {
  header.masthead p {
    font-size: 1.15rem;
  }
}

@media (min-width: 992px) {
  header.masthead {
    height: 100vh;
    min-height: 650px;
    padding-top: 0;
    padding-bottom: 0;
  }

  header.masthead h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  header.masthead h1 {
    font-size: 4rem;
  }
}

.service-box {
  max-width: 400px;
}

.portfolio-box {
  position: relative;
  display: block;
  max-width: 650px;
  margin: 0 auto;
}

.portfolio-box .portfolio-box-caption {
  position: absolute;
  bottom: 0;
  display: block;

  height: 100%;
  text-align: center;
  opacity: 0;
  color: #fff;
  background: rgba(240, 95, 64, 0.9);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
  padding: 0 15px;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
  font-size: 18px;
}

.portfolio-box:hover .portfolio-box-caption {
  opacity: 1;
}

.portfolio-box:focus {
  outline: none;
}

@media (min-width: 768px) {
  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
    font-size: 16px;
  }

  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    font-size: 22px;
  }
}

.text-primary {
  color: #155091 !important;
}

.btn {
  font-weight: 700;
  border: none;
  border-radius: 300px;
}

.btn-xl {
  padding: 1rem 2rem;
}

.btn-primary {
  background-color: #155091;
  border-color: #155091;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #fff;
  background-color: #04c3f6 !important;
}

.btn-primary:active,
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 95, 64, 0.5) !important;
}

/* Barra de rolagem */
::-webkit-scrollbar {
  width: 12px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #B3832F;
  border-radius: 0;
}


/* Cards - teste */

#team {
  background: #eee !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #00152e;
  border-color: #00152e;
  border-radius: 3px 15px;
  box-shadow: none;
  outline: none;
}

.btn-primary {
  color: #fff;
  background-color: #E2C796;
  border-color: #E2C796;
  border-radius: 3px 15px;

}

/* section {
  padding: 60px 0;
} */

/* section .section-title {
  text-align: center;
  color: #007b5e;
  margin-bottom: 50px;
  text-transform: uppercase;
} */

#team .card {
  border: none;
  background: #F8F9FC;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.mainflip {
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 1s;
  -moz-transition: 1s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
  position: relative;
}

.frontside {
  position: relative;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
  margin-bottom: 30px;
}

.backside {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
  -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
  box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 1s;
  -moz-transform-style: preserve-3d;
  -o-transition: 1s;
  -o-transform-style: preserve-3d;
  -ms-transition: 1s;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
  width: 35 0px;
  min-height: 312px;
}

/* .backside .card a {
  font-size: 18px;
  color: #007b5e !important;
} */

/* .frontside .card .card-title,
.backside .card .card-title {
  color: #007b5e !important;
} */

.frontside .card .card-body img {
  width: 275px;
  height: 314px;
  border: solid 2px #B3832F;
  border-radius: 50%;
}

/* fim */

.icone-social {
  color: #B3832F;
}

.icone-social:hover {
  color: #D2A85E;
}

.bg-rodape {
  /* background-image: linear-gradient(to right,#ffffff 0,#00152e 100%); */
  /* background-color: #00152e; */
  /* background-color: #113b75; */
  /* background-color: #155091; */
  /* background-color: #003576; */
  /* background-color: #CD7f32; */
  /* background-color: #000; */
  /* background-color: #363636	; */
  /* background-color: #dcdcdc; */
  background-color: #e4e4e4;
  /* background-color: #1C1C1C; */
  border-top: solid 2px #B3832F;
}

.efeito-link-rodape {
  text-decoration: none;
  /* color: #212529; */
  color: #B3832F;
}

.efeito-link-rodape:hover {
  text-decoration: none;
  /* color: #CD7f32; */
  color: #D2A85E;
}


.cartao {
  background-color: #F8F9FC;
  max-width: 300px;
  min-height: 300px;
  border-radius: 10px;
  /* padding: 0 5px; */
  /* margin: 0px 5px; */
}

.foto {
  width: 100%;
  /* height: 300px; */
  margin: 0;
  padding: 0;
}

.funcao {
  border-bottom: solid 2px #155091;
}

.funcao:hover {
  border-bottom: solid 2px #04c3f6;
}

.espacamento{
  padding-left: 100px;
}